home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2000 September / september_2000.iso / intercd / root / ^Linux / cdrtools-1.10 / README.vms < prev    next >
Encoding:
Text File  |  2000-05-28  |  4.3 KB  |  101 lines

  1. This README was written by Dr. Eberhard Heuser-Hofmann
  2.     vaxinf@chclu.chemie.uni-konstanz.de
  3.  
  4. If you are looking for a *.zip file instead of the tar archive,
  5. check this address:
  6.  
  7. ftp://v36.chemie.uni-konstanz.de/
  8.  
  9. The first version that compiles on VMS is at:
  10.  
  11. ftp://v36.chemie.uni-konstanz.de/cdrecord_1_8a9/
  12.  
  13. /*--------------------------------------------------------------------------*/
  14. Hi,
  15.  
  16. this is the first Version of J.Schilling's cdrecord-program for OpenVMS.
  17.  
  18. I'm using a HP6020-CD-recorder to test the program. Please send comments
  19. to Eberhard.Heuser-Hofmann@uni-konstanz.de.
  20.  
  21. There is a command-procedure called build_all.com in the [.cdrecord] subdir,
  22. that compiles and links the code. The cdrecord-program is been produced in
  23. [.cdrecord.vms] subdirectory.
  24.  
  25. Define this program as a symbol via
  26.  
  27. $ cdrecord:==$disk:[dir]cdrecord.exe
  28.  
  29. $ cdrecord -help gives an idea about the options, that are possible:
  30.  
  31. $ cdrecord -help
  32. $41$dkb100:[nb.cdrecord_1_8a9.cdrecord.vms]cdrecord.exe;1: Usage: $41$dkb100:[nb
  33. .cdrecord_1_8a9.cdrecord.vms]cdrecord.exe;1 [options] track1...trackn
  34. Options:
  35.         -version        print version information and exit
  36.         -v              increment general verbose level by one
  37.         -V              increment SCSI command transport verbose level by one
  38.         -debug          print additional debug messages
  39.         dev=target      SCSI target to use as CD/DVD-Recorder
  40.         timeout=#       set the default SCSI command timeout to #.
  41.         driver=name     user supplied driver name, use with extreme care
  42.         -checkdrive     check if a driver for the drive is present
  43.         -prcap          print drive capabilities for MMC compliant drives
  44.         -inq            do an inquiry for the drive end exit
  45.         -scanbus        scan the SCSI bus end exit
  46.         -reset          reset the SCSI bus with the cdrecorder (if possible)
  47.         -ignsize        ignore the known size of a medium (may cause problems)
  48.         speed=#         set speed of drive
  49.         blank=type      blank a CD-RW disc (see blank=help)
  50.         -load           load the disk and exit (works only with tray loader)
  51.         -eject          eject the disk after doing the work
  52.         -dummy          do everything with laser turned off
  53.         -msinfo         retrieve multi-session info for mkisofs >= 1.10
  54.         -toc            retrieve and print TOC/PMA data
  55.         -multi          generate a TOC that allows multi session
  56.                         In this case default track type is CD-ROM XA2
  57.         -fix            fixate a corrupt or unfixated disk (generate a TOC)
  58.         -nofix          do not fixate disk after writing tracks
  59.         tsize=#         Length of valid data in next track
  60.         padsize=#       Amount of padding for next track
  61.         pregap=#        Amount of pre-gap sectors before next track
  62.         defpregap=#     Amount of pre-gap sectors for all but track #1
  63.         -audio          Subsequent tracks are CD-DA audio tracks
  64.         -data           Subsequent tracks are CD-ROM data mode 1 (default)
  65.         -mode2          Subsequent tracks are CD-ROM data mode 2
  66.         -xa1            Subsequent tracks are CD-ROM XA mode 1
  67.         -xa2            Subsequent tracks are CD-ROM XA mode 2
  68.         -cdi            Subsequent tracks are CDI tracks
  69.         -isosize        Use iso9660 file system size for next data track
  70.         -preemp         Audio tracks are mastered with 50/15 ╡s preemphasis
  71.         -nopreemp       Audio tracks are mastered with no preemphasis (default)
  72.         -pad            Pad data tracks with 15 zeroed sectors
  73.                         Pad audio tracks to a multiple of 2352 bytes
  74.         -nopad          Do not pad data tracks (default)
  75.         -swab           Audio data source is byte-swapped (little-endian/Intel)
  76. The type of the first track is used for the toc type.
  77. Currently only form 1 tracks are supported.
  78.  
  79. One important point is how the CDR-device is being selected:
  80.  
  81. dev=i,j,k
  82.  
  83. where:
  84. i: 0   1   2   3   4   5   6   7 
  85.    dka dkb dkc dkd gka gkb gkc gkd
  86.  
  87. j: scsi-id
  88. k: sub-lun (usually 0)
  89.  
  90. As an example:
  91.  
  92. dev=1,5,2 selects dkb502:
  93.  
  94. An typical example how to put virtual disk data onto a cd-rom is given here:
  95.  
  96. $ cdrecord -speed 2 dev=0,4,0 dka200:[000000]vda0.dsk
  97.  
  98. Be aware that cdrecord has copyright on it.
  99.  
  100. Eberhard
  101.